summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoonlacer <jpsmock@outlook.com>2023-07-30 11:29:51 +0200
committerMoonlacer <jpsmock@outlook.com>2023-07-30 11:29:51 +0200
commita4a106bb25f40027874323ef23eb097cc5be625a (patch)
tree66546b734ab3279c77e9a31f7e11c9c336226e2b
parentAddress feedback and change log warning (diff)
downloadyuzu-a4a106bb25f40027874323ef23eb097cc5be625a.tar
yuzu-a4a106bb25f40027874323ef23eb097cc5be625a.tar.gz
yuzu-a4a106bb25f40027874323ef23eb097cc5be625a.tar.bz2
yuzu-a4a106bb25f40027874323ef23eb097cc5be625a.tar.lz
yuzu-a4a106bb25f40027874323ef23eb097cc5be625a.tar.xz
yuzu-a4a106bb25f40027874323ef23eb097cc5be625a.tar.zst
yuzu-a4a106bb25f40027874323ef23eb097cc5be625a.zip
-rw-r--r--src/video_core/vulkan_common/vulkan_device.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp
index d965e8718..cd6b06999 100644
--- a/src/video_core/vulkan_common/vulkan_device.cpp
+++ b/src/video_core/vulkan_common/vulkan_device.cpp
@@ -554,7 +554,8 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR
}
sets_per_pool = 64;
- if (extensions.extended_dynamic_state3 && is_amd_driver && !features.shader_float16_int8.shaderFloat16 &&
+ if (extensions.extended_dynamic_state3 && is_amd_driver &&
+ !features.shader_float16_int8.shaderFloat16 &&
properties.properties.driverVersion >= VK_MAKE_API_VERSION(0, 2, 0, 258)) {
LOG_WARNING(Render_Vulkan,
"AMD's GCN4 architecture has broken extendedDynamicState3ColorBlendEquation");